home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / sizeofdemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  221 b   |  9 lines

  1. program SizeOfDemo;
  2. var
  3.   a: Integer;
  4.   b: array [1 .. 8] of Char;
  5. begin
  6.   WriteLn (SizeOf (a));  { Size of an `Integer'; often 4 bytes. }
  7.   WriteLn (SizeOf (b))   { Size of eight `Char's; usually 8 bytes. }
  8. end.
  9.